home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Tools / Development / PowerD / alpha / modules / resources / battmembitsshared.m < prev    next >
Encoding:
Text File  |  2002-10-28  |  1.7 KB  |  58 lines

  1. /*
  2.  * Shared bits in the battery-backedup ram.
  3.  *
  4.  *  Bits 64 and above
  5.  */
  6. /*
  7.  * SHARED_AMNESIA
  8.  *
  9.  *    The battery-backedup memory has had a memory loss.
  10.  *    This bit is used as a flag that the user should be
  11.  *    notified that all battery-backed bit have been
  12.  *    reset and that some attention is required. Zero
  13.  *    indicates that a memory loss has occured.
  14.  */
  15. CONST BATTMEM_SHARED_AMNESIA_ADDR=64,
  16.  BATTMEM_SHARED_AMNESIA_LEN=1,
  17. /*
  18.  * SCSI_HOST_ID
  19.  *
  20.  *    a 3 bit field (0-7) that is stored in complemented form
  21.  *    (this is so that default value of 0 really means 7)
  22.  *    It's used to set the A3000 controllers SCSI ID (on reset)
  23.  */
  24.  BATTMEM_SCSI_HOST_ID_ADDR=65,
  25.  BATTMEM_SCSI_HOST_ID_LEN=3,
  26. /*
  27.  * SCSI_SYNC_XFER
  28.  *
  29.  *    determines if the driver should initiate synchronous
  30.  *    transfer requests or leave it to the drive to send the
  31.  *    first request.  This supports drives that crash or
  32.  *    otherwise get confused when presented with a sync xfer
  33.  *    message.  Default=0=sync xfer not initiated.
  34.  */
  35.  BATTMEM_SCSI_SYNC_XFER_ADDR=68,
  36.  BATTMEM_SCSI_SYNC_XFER_LEN=1,
  37. /*
  38.  * SCSI_FAST_SYNC
  39.  *
  40.  *    determines if the driver should initiate fast synchronous
  41.  *    transfer requests (>5MB/s) instead of older <=5MB/s requests.
  42.  *    Note that this has no effect if synchronous transfers are not
  43.  *    negotiated by either side.
  44.  *    Default=0=fast sync xfer used.
  45.  */
  46.  BATTMEM_SCSI_FAST_SYNC_ADDR=69,
  47.  BATTMEM_SCSI_FAST_SYNC_LEN=1,
  48. /*
  49.  * SCSI_TAG_QUEUES
  50.  *
  51.  *    determines if the driver should use SCSI-2 tagged queuing
  52.  *    which allows the drive to accept and reorder multiple read
  53.  *    and write requests.
  54.  *    Default=0=tagged queuing NOT enabled
  55.  */
  56.  BATTMEM_SCSI_TAG_QUEUES_ADDR=70,
  57.  BATTMEM_SCSI_TAG_QUEUES_LEN=1
  58.